home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / utility / uwserver.zip / uwserver.tar / h / openpty.h next >
C/C++ Source or Header  |  1991-01-25  |  308b  |  12 lines

  1. /*
  2.  *    This file defines the "ptydesc" structure which is returned
  3.  *    by the routine "openpty".
  4.  */
  5.  
  6. struct ptydesc {
  7.     int        pt_pfd;        /* file descriptor of master side */
  8.     int        pt_tfd;        /* file descriptor of slave side */
  9.     char        *pt_pname;    /* master device name */
  10.     char        *pt_tname;    /* slave device name */
  11. };
  12.